summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2023-04-28 23:52:11 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2023-04-28 23:59:36 +0200
commitcb092af3f0e3009ce9e0d7ce016e145917cbc7e1 (patch)
tree0a70c0cf76fd2ae6cbe868641404f75f00bba282
parentMerge pull request #10051 from liamwhite/surface-capabilities (diff)
downloadyuzu-cb092af3f0e3009ce9e0d7ce016e145917cbc7e1.tar
yuzu-cb092af3f0e3009ce9e0d7ce016e145917cbc7e1.tar.gz
yuzu-cb092af3f0e3009ce9e0d7ce016e145917cbc7e1.tar.bz2
yuzu-cb092af3f0e3009ce9e0d7ce016e145917cbc7e1.tar.lz
yuzu-cb092af3f0e3009ce9e0d7ce016e145917cbc7e1.tar.xz
yuzu-cb092af3f0e3009ce9e0d7ce016e145917cbc7e1.tar.zst
yuzu-cb092af3f0e3009ce9e0d7ce016e145917cbc7e1.zip
-rw-r--r--src/video_core/renderer_vulkan/vk_pipeline_cache.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
index 985cc3203..a318d643e 100644
--- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
+++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp
@@ -696,6 +696,13 @@ std::unique_ptr<ComputePipeline> PipelineCache::CreateComputePipeline(
std::unique_ptr<ComputePipeline> PipelineCache::CreateComputePipeline(
ShaderPools& pools, const ComputePipelineCacheKey& key, Shader::Environment& env,
PipelineStatistics* statistics, bool build_in_parallel) try {
+ // TODO: Remove this when Intel fixes their shader compiler.
+ // https://github.com/IGCIT/Intel-GPU-Community-Issue-Tracker-IGCIT/issues/159
+ if (device.GetDriverID() == VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS) {
+ LOG_ERROR(Render_Vulkan, "Skipping 0x{:016x}", key.Hash());
+ return nullptr;
+ }
+
LOG_INFO(Render_Vulkan, "0x{:016x}", key.Hash());
Shader::Maxwell::Flow::CFG cfg{env, pools.flow_block, env.StartAddress()};